home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / themes / original / layout.inc.php < prev    next >
PHP Script  |  2005-01-20  |  2KB  |  48 lines

  1. <?php
  2.  
  3. $cfg['LeftWidth']           = 200;          // left frame width
  4. /* colors */
  5. $cfg['LeftBgColor']         = '#D0DCE0';    // background color for the left frame
  6. $cfg['RightBgColor']        = '#F5F5F5';    // background color for the right frame
  7. $cfg['RightBgImage']        = '';           // path to a background image for the right frame
  8.                                             // (leave blank for no background image)
  9. $cfg['LeftPointerColor']    = '#CCFFCC';    // color of the pointer in left frame
  10. $cfg['Border']              = 0;            // border width on tables
  11. $cfg['ThBgcolor']           = '#D3DCE3';    // table header row colour
  12. $cfg['BgcolorOne']          = '#E5E5E5';    // table data row colour
  13. $cfg['BgcolorTwo']          = '#D5D5D5';    // table data row colour, alternate
  14. $cfg['BrowsePointerColor']  = '#CCFFCC';    // color of the pointer in browse mode
  15. $cfg['BrowseMarkerColor']   = '#FFCC99';    // color of the marker (visually marks row
  16.                                             // by clicking on it) in browse mode
  17.  
  18. $cfg['QueryWindowWidth']    = 600;          // Width of Query window
  19. $cfg['QueryWindowHeight']   = 400;          // Height of Query window
  20.  
  21. /**
  22.  * SQL Parser Settings
  23.  */
  24. $cfg['SQP']['fmtColor']     = array(        // Syntax colouring data
  25.     'comment'            => '#808000',
  26.     'comment_mysql'      => '',
  27.     'comment_ansi'       => '',
  28.     'comment_c'          => '',
  29.     'digit'              => '',
  30.     'digit_hex'          => 'teal',
  31.     'digit_integer'      => 'teal',
  32.     'digit_float'        => 'aqua',
  33.     'punct'              => 'fuchsia',
  34.     'alpha'              => '',
  35.     'alpha_columnType'   => '#FF9900',
  36.     'alpha_columnAttrib' => '#0000FF',
  37.     'alpha_reservedWord' => '#990099',
  38.     'alpha_functionName' => '#FF0000',
  39.     'alpha_identifier'   => 'black',
  40.     'alpha_charset'      => '#6495ed',
  41.     'alpha_variable'     => '#800000',
  42.     'quote'              => '#008000',
  43.     'quote_double'       => '',
  44.     'quote_single'       => '',
  45.     'quote_backtick'     => ''
  46. );
  47. ?>
  48.